Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
Oracle PLSQL Tutorial
1) Aggregate Functions
2) Analytical Functions
3) Character String Functions
4) Collections
5) Conversion Functions
6) Cursor
7) Date Timestamp Functions
8) Function Procedure Packages
9) Index
10) Insert Update Delete
11) Introduction
12) Large Objects
13) Linear Regression Functions
14) Miscellaneous Functions
15) Numerical Math Functions
16) Object Oriented
17) PL SQL Data Types
18) PL SQL Operators
19) PL SQL Programming
20) PL SQL Statements
21) Query Select
22) Regular Expressions Functions
23) Sequences
24) Set
25) SQL Data Types
26) SQL PLUS Session Environment
27) Statistical Functions
28) System Packages
29) System Tables Data Dictionary
30) Table
31) Table Joins
32) Transaction
33) Trigger
34) User Privilege
35) View
36) XML
Sequences
1) Altering an existing sequence
2) Automatically including unique sequence numbers during an INSERT
3) Create a sequence
4) Create a sequence starting with 1000
5) Create a sequence starting with 100000000 order
6) Create sequence deptno_seq start with 50 increment by 10
7) Create sequence emps_seq start with 501 increment by 10
8) CREATE SEQUENCE myTableIDSeq INCREMENT BY 1 START WITH 1000
9) CREATE SEQUENCE test_seq
10) Create the simplest sequence
11) Creating a sequence and then get the next value
12) Dropping a Sequence
13) Get next value from sequence
14) Get Sequence information from user_sequences table
15) Getting Information on Sequences
16) If id is null, use the value from sequence
17) Modifying a Sequence
18) Once initialized, you can get the current value from the sequence using currval
19) Populating a Primary Key Using a Sequence
20) Query current sequence value
21) Random value based on sequence
22) Select deptno_seq currval, deptno_seq nextval
23) Sequences
24) Set start value, minimax value and cache
25) Test sequence step
26) Use dual table to check sequence
27) Using a sequence to populate a tables column
28) When you select currval , nextval remains unchanged; nextval only changes when you select nextval to get the next value